func time.isDigit
10 uses
time (current package)
format.go#L305: if !isDigit(layout, j) {
format.go#L899: func isDigit[bytes []byte | string](s bytes, i int) bool {
format.go#L911: if !isDigit(s, 0) {
format.go#L914: if !isDigit(s, 1) {
format.go#L928: for i = 0; i < 3 && isDigit(s, i); i++ {
format.go#L1088: if len(value) < 4 || !isDigit(value, 0) {
format.go#L1152: if len(value) >= 2 && commaOrPeriod(value[0]) && isDigit(value, 1) {
format.go#L1161: for ; n < len(value) && isDigit(value, n); n++ {
format_rfc3339.go#L120: if len(s) >= 2 && s[0] == '.' && isDigit(s, 1) {
format_rfc3339.go#L122: for ; n < len(s) && isDigit(s, n); n++ {
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |